Update src/components/TagsManager.vue

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
grvwy 2025-05-21 20:59:16 +02:00 committed by GitHub
parent 40e9f297e7
commit 20789f59f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -137,10 +137,10 @@
</div> </div>
<!-- Modal Footer: Cancel batch or Confirm and Add all staged tags --> <!-- Modal Footer: Cancel batch or Confirm and Add all staged tags -->
<div class="modal-footer"> <div class="modal-footer">
<button type="button" class="btn btn-secondary" @click.stop="clearStagingAndCloseModal">{{ $t("Cancel") }}</button>
<button type="button" class="btn btn-outline-primary me-2" :disabled="processing || validateDraftTag.invalid" @click.stop="stageCurrentTag"> <button type="button" class="btn btn-outline-primary me-2" :disabled="processing || validateDraftTag.invalid" @click.stop="stageCurrentTag">
{{ $t("Add Another Tag") }} {{ $t("Add Another Tag") }}
</button> </button>
<button type="button" class="btn btn-secondary" @click.stop="clearStagingAndCloseModal">{{ $t("Cancel") }}</button>
<button type="button" class="btn btn-primary" :disabled="processing || (stagedForBatchAdd.length === 0 && validateDraftTag.invalid)" data-testid="add-tags-final-button" @click.stop="confirmAndCommitStagedTags">{{ $t("Add Tags") }}</button> <button type="button" class="btn btn-primary" :disabled="processing || (stagedForBatchAdd.length === 0 && validateDraftTag.invalid)" data-testid="add-tags-final-button" @click.stop="confirmAndCommitStagedTags">{{ $t("Add Tags") }}</button>
</div> </div>
<!-- End Modal Footer --> <!-- End Modal Footer -->