atom-nuxt 1.0.132 → 1.0.133
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -172,7 +172,7 @@ const dialogOpen = computed({
|
|
|
172
172
|
console.log('currentRouteName', currentRouteName)
|
|
173
173
|
|
|
174
174
|
|
|
175
|
-
if (hasBackState && previousRouteName
|
|
175
|
+
if (hasBackState && previousRouteName === currentRouteName) { // Only go back if there's a back state AND the previous route is the same
|
|
176
176
|
console.log('going back')
|
|
177
177
|
router.back();
|
|
178
178
|
} else {
|