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
@@ -89,7 +89,7 @@ export const useExchangeRatesStore = defineStore('exchangeRates', () => {
const currentData = getExchangeRatesFromLocalStorage();
if (force && currentData && currentData.data && isEquals(currentData.data, data.result)) {
reject({ message: 'Exchange rates data is up to date' });
reject({ message: 'Exchange rates data is up to date', isUpToDate: true });
return;
}