fix "Save Display Order" still displays bug when adjusting the order and then restoring the original order in the desktop version

This commit is contained in:
MaysWind
2025-01-22 23:12:58 +08:00
parent 5bf7f77520
commit 85557c2879
11 changed files with 21 additions and 9 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ export const useTransactionCategoriesStore = defineStore('transactionCategories'
const transactionCategories = TransactionCategory.ofMap(data.result);
if (force && data.result && isEquals(allTransactionCategories.value, transactionCategories)) {
reject({ message: 'Category list is up to date' });
reject({ message: 'Category list is up to date', isUpToDate: true });
return;
}