resolve conflict

This commit is contained in:
isUnknown 2024-10-08 17:31:18 +02:00
parent 06d3a71fb0
commit d465fb3de7
6 changed files with 134 additions and 36 deletions

View file

@ -15,7 +15,7 @@
rows="3"
class="border border-grey-200 | rounded-xl | p-16 | w-full"
v-model="page.content.description"
@input="savePage()"
@input="saveDescription()"
></textarea>
</div>
<fieldset class="project-details__filters | flex-1">
@ -34,12 +34,12 @@
<input
class="sr-only"
type="checkbox"
:id="`${tag}-page`"
:name="`${tag}-page`"
:value="`${tag}-page`"
:id="`${tag}`"
:name="`${tag}`"
:value="`${tag}`"
v-model="localSelectedTags"
/>
<label class="btn btn--sm btn--primary" :for="`${tag}-page`">{{
<label class="btn btn--sm btn--primary" :for="`${tag}`">{{
toPascalCase(tag)
}}</label>
</template>
@ -71,7 +71,7 @@ function updateSelectedTags(tags) {
const isWaitingForSave = ref(false);
const savePage = debounce(() => {
const saveDescription = debounce(() => {
if (!isWaitingForSave.value) {
isWaitingForSave.value = true;
const headers = {