Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/modals/options/BackupWindowModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
>
Export as file
</PrimaryButton>
<PrimaryButton class="o-btn-file-ops">
<PrimaryButton class="o-btn-file-ops c-file-import-button">
<input
class="c-file-import"
type="file"
Expand Down Expand Up @@ -143,7 +143,7 @@

.c-entry-container {
display: flex;
flex-direction: row;

Check warning on line 146 in src/components/modals/options/BackupWindowModal.vue

View check run for this annotation

codefactor.io / CodeFactor

src/components/modals/options/BackupWindowModal.vue#L146

Expected shorthand property "flex-flow". (declaration-block-no-redundant-longhand-properties)
flex-wrap: wrap;
}

Expand Down
2 changes: 1 addition & 1 deletion src/core/storage/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ export const GameStorage = {
const id = Number(backupKey);
const storageKey = this.backupDataKey(this.currentSlot, id);
localStorage.setItem(storageKey, GameSaveSerializer.serialize(backupData[backupKey]));
this.backupTimeData[id] = {
this.lastBackupTimes[id] = {
backupTimer: backupData.time[id].backupTimer,
date: backupData.time[id].date,
};
Expand Down