Merge branch 'master' into dependabot/npm_and_yarn/examples/nextjs-api-sales/next-14.2.25
This commit is contained in:
commit
3e92941a18
|
@ -261,9 +261,13 @@ export class UserDB {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const change = dbUser ? 0 : 1 // no change if there is existing user
|
let change = 1
|
||||||
|
|
||||||
let creatorsChange = 0
|
let creatorsChange = 0
|
||||||
|
if (opts.isAccountHolder || dbUser) {
|
||||||
|
change = 0
|
||||||
|
creatorsChange = 1
|
||||||
|
}
|
||||||
|
|
||||||
if (dbUser) {
|
if (dbUser) {
|
||||||
const [isDbUserCreator, isUserCreator] = await creatorsInList([
|
const [isDbUserCreator, isUserCreator] = await creatorsInList([
|
||||||
dbUser,
|
dbUser,
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<DetailPopover bind:this={popover} {title} align={PopoverAlignment.Right}>
|
<DetailPopover bind:this={popover} {title} align={PopoverAlignment.Right}>
|
||||||
<div slot="anchor" class:display-new={!authConfig}>
|
<div slot="anchor" class:display-new={!authConfig && oauth2Enabled}>
|
||||||
<ActionButton icon="LockClosed" quiet selected>
|
<ActionButton icon="LockClosed" quiet selected>
|
||||||
{#if !authConfig}
|
{#if !authConfig}
|
||||||
Authentication
|
Authentication
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 2991addf939f2b6fb1a258616056f2931348c09b
|
Subproject commit 761ec71e1543ef04887d6515f99a2c2911999ebf
|
Loading…
Reference in New Issue