We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd0bc27 commit 16e087fCopy full SHA for 16e087f
typescripts/comfyui/comfyui.tsx
@@ -1035,6 +1035,32 @@ function renderInput(
1035
console.log(`${name}: ${event.target.value}`)
1036
}}
1037
></sp-textfield>
1038
+ <button
1039
+ style={{
1040
+ width: '26px',
1041
+ }}
1042
+ className="btnSquare"
1043
+ onClick={() => {
1044
+ inputs[name] = (
1045
+ BigInt(inputs[name]) - BigInt(1)
1046
+ ).toString()
1047
1048
+ >
1049
+ {'<'}
1050
+ </button>
1051
1052
1053
1054
1055
1056
1057
1058
+ BigInt(inputs[name]) + BigInt(1)
1059
1060
1061
1062
+ {'>'}
1063
1064
<sp-checkbox
1065
title="randomize seed before generation"
1066
value={store.data.is_random_seed[node_id]}
0 commit comments