🐛 fix(EditNodeModal): remove unnecessary whitespace
🐛 fix(exportModal): remove unnecessary whitespace 🐛 fix(tailwind.config.js): fix keyframes names and add missing comma
This commit is contained in:
parent
5001416716
commit
39c20fe46b
3 changed files with 4 additions and 9 deletions
|
|
@ -81,7 +81,6 @@ export default function EditNodeModal({ data }: { data: NodeDataType }) {
|
|||
});
|
||||
setNodeValue(!nodeValue);
|
||||
}
|
||||
|
||||
|
||||
const handleOnNewValue = (newValue: any, name) => {
|
||||
data.node.template[name].value = newValue;
|
||||
|
|
|
|||
|
|
@ -71,10 +71,7 @@ export default function ExportModal() {
|
|||
setChecked(event);
|
||||
}}
|
||||
/>
|
||||
<label
|
||||
htmlFor="terms"
|
||||
className="export-modal-save-api text-sm"
|
||||
>
|
||||
<label htmlFor="terms" className="export-modal-save-api text-sm">
|
||||
Save with my API keys
|
||||
</label>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -130,11 +130,11 @@ module.exports = {
|
|||
sans: ["var(--font-sans)", ...fontFamily.sans],
|
||||
},
|
||||
keyframes: {
|
||||
"slideDown": {
|
||||
slideDown: {
|
||||
from: { height: 0 },
|
||||
to: { height: 100},
|
||||
to: { height: 100 },
|
||||
},
|
||||
"slideUp": {
|
||||
slideUp: {
|
||||
from: { height: "var(--radix-accordion-content-height)" },
|
||||
to: { height: 0 },
|
||||
},
|
||||
|
|
@ -227,5 +227,4 @@ module.exports = {
|
|||
require("@tailwindcss/typography"),
|
||||
require("daisyui"),
|
||||
],
|
||||
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue