correct front-end lint
This commit is contained in:
@@ -109,7 +109,7 @@ i18n-frontend:
|
|||||||
image: python:alpine
|
image: python:alpine
|
||||||
stage: check
|
stage: check
|
||||||
script:
|
script:
|
||||||
- python3 check_i18n.py
|
- python3 check_i18n.py
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
needs:
|
needs:
|
||||||
- install
|
- install
|
||||||
|
|||||||
@@ -264,7 +264,7 @@ const { result: membersResult } = useQuery<{ group: Pick<IGroup, "members"> }>(
|
|||||||
|
|
||||||
const members = computed<Paginate<IMember>>(() =>
|
const members = computed<Paginate<IMember>>(() =>
|
||||||
selectedActor.value?.type === ActorType.GROUP
|
selectedActor.value?.type === ActorType.GROUP
|
||||||
? membersResult.value?.group?.members ?? { elements: [], total: 0 }
|
? (membersResult.value?.group?.members ?? { elements: [], total: 0 })
|
||||||
: { elements: [], total: 0 }
|
: { elements: [], total: 0 }
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -91,7 +91,9 @@ const inputAttrs = computed(() => props.inputAttrs);
|
|||||||
|
|
||||||
// const modalOpened = ref(false);
|
// const modalOpened = ref(false);
|
||||||
|
|
||||||
const prompt = ref<string>(hasInput.value ? inputAttrs.value.value ?? "" : "");
|
const prompt = ref<string>(
|
||||||
|
hasInput.value ? (inputAttrs.value.value ?? "") : ""
|
||||||
|
);
|
||||||
const input = ref();
|
const input = ref();
|
||||||
|
|
||||||
// https://github.com/oruga-ui/oruga/issues/339
|
// https://github.com/oruga-ui/oruga/issues/339
|
||||||
|
|||||||
Reference in New Issue
Block a user