Merge remote-tracking branch 'origin/master' into fix/automation-bindings-name-fix

This commit is contained in:
Peter Clement 2024-01-22 09:42:44 +00:00
commit e53c4f1fcb
6 changed files with 22 additions and 22 deletions

View File

@ -1,5 +1,5 @@
{
"version": "2.15.1",
"version": "2.15.2",
"npmClient": "yarn",
"packages": [
"packages/*",

@ -1 +1 @@
Subproject commit 11469c40d73ea58f2aec80c12c1946289b67c6f2
Subproject commit 05c90ce55144e260da6688335c16783eab79bf96

View File

@ -6098,23 +6098,6 @@
}
]
},
{
"tag": "style",
"type": "select",
"label": "Size",
"key": "size",
"options": [
{
"label": "Medium",
"value": "spectrum--medium"
},
{
"label": "Large",
"value": "spectrum--large"
}
],
"defaultValue": "spectrum--medium"
},
{
"tag": "style",
"type": "select",
@ -6131,6 +6114,23 @@
}
],
"defaultValue": "bottom"
},
{
"tag": "style",
"type": "select",
"label": "Size",
"key": "size",
"options": [
{
"label": "Medium",
"value": "spectrum--medium"
},
{
"label": "Large",
"value": "spectrum--large"
}
],
"defaultValue": "spectrum--medium"
}
],
"actions": [

View File

@ -29,7 +29,7 @@
type,
quiet,
disabled,
size,
size: size || "M",
}}
/>
{/each}

@ -1 +1 @@
Subproject commit 31f11bcd3323d2105a83ebfdee8facc2900bb879
Subproject commit ce7722ed4474718596b465dcfd49bef36cab2e42

View File

@ -94,7 +94,7 @@ export async function setTestFlag(id: string) {
}
export async function checkTestFlag(id: string) {
const flag = await flagClient.get(id)
const flag = await flagClient?.get(id)
return !!(flag && flag.testing)
}