fix: empty github auth provider info
This commit is contained in:
@@ -53,7 +53,7 @@
|
|||||||
active.folderPath === folderPath &&
|
active.folderPath === folderPath &&
|
||||||
active.requestIndex === requestIndex
|
active.requestIndex === requestIndex
|
||||||
"
|
"
|
||||||
class="rounded-full bg-green-500 h-1.5 mx-3 w-1.5"
|
class="rounded-full bg-green-500 flex-shrink-0 h-1.5 mx-3 w-1.5"
|
||||||
></span>
|
></span>
|
||||||
</span>
|
</span>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
active.originLocation === 'team-collection' &&
|
active.originLocation === 'team-collection' &&
|
||||||
active.requestID === requestIndex
|
active.requestID === requestIndex
|
||||||
"
|
"
|
||||||
class="rounded-full bg-green-500 h-1.5 mx-3 w-1.5"
|
class="rounded-full bg-green-500 flex-shrink-0 h-1.5 mx-3 w-1.5"
|
||||||
></span>
|
></span>
|
||||||
</span>
|
</span>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
|
|||||||
@@ -182,12 +182,14 @@ import DocsTemplate from "~/assets/md/docs.md"
|
|||||||
import folderContents from "~/assets/md/folderContents.md"
|
import folderContents from "~/assets/md/folderContents.md"
|
||||||
import folderBody from "~/assets/md/folderBody.md"
|
import folderBody from "~/assets/md/folderBody.md"
|
||||||
import { useSetting } from "~/newstore/settings"
|
import { useSetting } from "~/newstore/settings"
|
||||||
|
import { useReadonlyStream } from "~/helpers/utils/composables"
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: { Splitpanes, Pane },
|
components: { Splitpanes, Pane },
|
||||||
setup() {
|
setup() {
|
||||||
return {
|
return {
|
||||||
RIGHT_SIDEBAR: useSetting("RIGHT_SIDEBAR"),
|
RIGHT_SIDEBAR: useSetting("RIGHT_SIDEBAR"),
|
||||||
|
currentUser: useReadonlyStream(currentUser$, null),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@@ -196,12 +198,6 @@ export default defineComponent({
|
|||||||
items: [],
|
items: [],
|
||||||
docsMarkdown: "",
|
docsMarkdown: "",
|
||||||
selected: [],
|
selected: [],
|
||||||
currentUser: null,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
subscriptions() {
|
|
||||||
return {
|
|
||||||
currentUser: currentUser$,
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
head() {
|
head() {
|
||||||
|
|||||||
Reference in New Issue
Block a user