refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-12-28 09:49:58 +01:00
committed by GitHub
parent 639afcd7a5
commit 68cff4c59e
304 changed files with 3428 additions and 3516 deletions

View File

@@ -15,19 +15,19 @@ const hasOwnerPermission = computed(() => hasPermission(['instanceOwner']));
</script>
<template>
<base-banner customIcon="info-circle" theme="warning" name="V1" :class="$style.v1container">
<BaseBanner custom-icon="info-circle" theme="warning" name="V1" :class="$style.v1container">
<template #mainContent>
<span v-html="locale.baseText('banners.v1.message')"></span>
<a
v-if="hasOwnerPermission"
:class="$style.link"
@click="dismissPermanently"
data-test-id="banner-confirm-v1"
@click="dismissPermanently"
>
<span v-html="locale.baseText('generic.dontShowAgain')"></span>
</a>
</template>
</base-banner>
</BaseBanner>
</template>
<style lang="scss" module>