adminforth 2.54.0-next.1 → 2.54.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -134,7 +134,7 @@ show: {
|
|
|
134
134
|
/>
|
|
135
135
|
|
|
136
136
|
<p v-if="errorMessage" class="text-sm text-red-600">
|
|
137
|
-
{{ errorMessage }}
|
|
137
|
+
\{{ errorMessage }}
|
|
138
138
|
</p>
|
|
139
139
|
|
|
140
140
|
<p v-else-if="isEmpty" class="text-sm text-amber-600">
|
|
@@ -227,9 +227,9 @@ function syncState() {
|
|
|
227
227
|
<template>
|
|
228
228
|
<div class="flex items-center gap-2">
|
|
229
229
|
<span>
|
|
230
|
-
{{ meta?.filler?.repeat(record.number_of_rooms || 0) }}
|
|
230
|
+
\{{ meta?.filler?.repeat(record.number_of_rooms || 0) }}
|
|
231
231
|
</span>
|
|
232
|
-
<span
|
|
232
|
+
<span>\{{ record.number_of_rooms }} \{{ meta?.suffix }}</span>
|
|
233
233
|
</div>
|
|
234
234
|
</template>
|
|
235
235
|
|
|
@@ -354,11 +354,11 @@ async function writeTemplateFiles(dirname, cwd, useNpm, options) {
|
|
|
354
354
|
dest: '.agents/skills/adminforth-hooks/SKILL.md',
|
|
355
355
|
data: {},
|
|
356
356
|
},
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
357
|
+
{
|
|
358
|
+
src: '.agents/skills/adminforth-custom-vue/SKILL.md.hbs',
|
|
359
|
+
dest: '.agents/skills/adminforth-custom-vue/SKILL.md',
|
|
360
|
+
data: {},
|
|
361
|
+
},
|
|
362
362
|
{
|
|
363
363
|
// We'll write .env using the same content as .env.sample
|
|
364
364
|
src: '.env.local.hbs',
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
@click="handleClick"
|
|
6
6
|
class="text-white bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-500 dark:hover:bg-blue-600 dark:focus:ring-blue-800"
|
|
7
7
|
>
|
|
8
|
-
{{ $t('Example') }}
|
|
8
|
+
\{{ $t('Example') }}
|
|
9
9
|
</button>
|
|
10
10
|
</div>
|
|
11
11
|
</template>
|