Skip to content

Commit

Permalink
style: linting fix #356
Browse files Browse the repository at this point in the history
  • Loading branch information
bsilkyn committed May 15, 2024
1 parent 9b182f4 commit b0f6052
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions frontend/src/views/admin/DockerImagesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import { useRoute } from 'vue-router';
import { DockerImage } from '@/types/DockerImage.ts';
import { getDockerImageFilters } from '@/types/filter/Filter.ts';
/* Injection */
const { t } = useI18n();
const { query } = useRoute();
Expand Down Expand Up @@ -57,7 +56,6 @@ const columns = ref([
{ field: 'name', header: 'admin.docker_images.name' },
{ field: 'owner', header: 'admin.docker_images.owner' },
]);
const showSafetyGuard = ref<boolean>(false);
const safetyGuardFunction = ref<() => Promise<void>>(async () => {});
const fileUpload = ref();
Expand All @@ -67,9 +65,9 @@ const activateSafetyGuard = (): void => {
message: t('admin.safeGuard'),
rejectLabel: t('primevue.reject'),
acceptLabel: t('primevue.accept'),
accept: safetyGuardCleanup
})
}
accept: safetyGuardCleanup,
});
};
/**
* Hides safety guard, executes function that safety guard guards against and fetches data again
*/
Expand Down

0 comments on commit b0f6052

Please sign in to comment.