Skip to content

Commit

Permalink
Put scene publication status on line below prompt.
Browse files Browse the repository at this point in the history
Carifio24 committed Dec 6, 2023
1 parent cc818cf commit 55650d6
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions components/SceneEditorPanel.vue
Original file line number Diff line number Diff line change
@@ -77,12 +77,12 @@

<n-grid-item>
<n-text depth="3" style="font-size: smaller;">
Published Status:
Publication Status:
</n-text>
<n-text>
{{ published_status ? 'Published' : 'Not Published' }}
</n-text>
<n-space justify="end">
<n-space justify="space-between">
<n-text>
{{ published_status ? 'Published' : 'Not Published' }}
</n-text>
<n-button :loading="published_status_loading" @click="onUpdatePublished">
{{ published_status ? 'Unpublish' : 'Publish' }}
</n-button>
2 changes: 1 addition & 1 deletion pages/@[handle]/dashboard.vue
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@
import { storeToRefs } from "pinia";
import { RouteLocationNormalized } from "vue-router";
import { ArrowBackRound, CheckSharp } from "@vicons/material";
import { ArrowBackRound } from "@vicons/material";
import {
NButton,

0 comments on commit 55650d6

Please sign in to comment.