We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1a4d88 commit ed869d1Copy full SHA for ed869d1
src/views/CodexView.vue
@@ -149,7 +149,7 @@ async function importPlanetFile(event: Event) {
149
newPlanets
150
.filter((np) => np.status === 'fulfilled')
151
.map((np: PromiseSettledResult<IDBPlanet>) => (np as PromiseFulfilledResult<IDBPlanet>).value)
152
- .map(np => ({ ...np, version: np.version ?? '1' }))
+ .map((np) => ({ ...np, version: np.version ?? '1' })),
153
)
154
if (allAdded && rejectedFiles.length === 0) {
155
EventBus.sendToastEvent('success', 'toast.import_success', 3000)
0 commit comments