Reoganise the buttons for the Material Assistant

Now instead of an icon the button is blue , at first and have the caption: "ASSISTANT..."
This commit is contained in:
Alezia Kurdis 2022-07-21 16:00:10 -04:00 committed by GitHub
parent 626e9e9d93
commit 3d48527e81
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -878,10 +878,10 @@ const GROUPS = [
{
label: "Material Data",
type: "textarea",
buttons: [ { id: "clear", label: "Clear Material", className: "red", onClick: clearMaterialData },
{ id: "edit", label: "Edit as JSON", className: "blue", onClick: newJSONMaterialEditor },
{ id: "save", label: "Save Material", className: "black", onClick: saveMaterialData },
{ id: "materialAssistant", label: "s", className: "glyph black", onClick: openMaterialAssistant }],
buttons: [ { id: "materialAssistant", label: "Assistant...", className: "secondary_blue blue", onClick: openMaterialAssistant },
{ id: "clear", label: "Clear Material", className: "secondary_red red", onClick: clearMaterialData },
{ id: "edit", label: "Edit as JSON", className: "secondary", onClick: newJSONMaterialEditor },
{ id: "save", label: "Save Material", className: "secondary", onClick: saveMaterialData }],
propertyID: "materialData",
},
{