myoperator-ui 0.0.223 → 0.0.224
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/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -18435,7 +18435,7 @@ function VarPopup({
|
|
|
18435
18435
|
{group.label}
|
|
18436
18436
|
</p>
|
|
18437
18437
|
{group.items.map((item) => {
|
|
18438
|
-
const insertValue = item.value ?? \`{{
|
|
18438
|
+
const insertValue = item.value ?? \`{{\${item.name}}}\`;
|
|
18439
18439
|
return (
|
|
18440
18440
|
<div key={item.name} className="flex items-center rounded-sm transition-colors hover:bg-semantic-bg-ui">
|
|
18441
18441
|
<button
|
|
@@ -18445,7 +18445,7 @@ function VarPopup({
|
|
|
18445
18445
|
onMouseDown={(e) => { e.preventDefault(); onSelect(insertValue); }}
|
|
18446
18446
|
className="relative flex flex-1 min-w-0 cursor-pointer select-none items-center px-2 py-1.5 text-sm outline-none"
|
|
18447
18447
|
>
|
|
18448
|
-
{\`{{
|
|
18448
|
+
{\`{{\${item.name}}}\`}
|
|
18449
18449
|
</button>
|
|
18450
18450
|
{item.editable && onEditVariable && (
|
|
18451
18451
|
<button
|