From 3d48527e816a1e3b5a2407c67ae755491a905c2b Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Thu, 21 Jul 2022 16:00:10 -0400 Subject: [PATCH] Reoganise the buttons for the Material Assistant Now instead of an icon the button is blue , at first and have the caption: "ASSISTANT..." --- .../create/entityProperties/html/js/entityProperties.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/system/create/entityProperties/html/js/entityProperties.js b/scripts/system/create/entityProperties/html/js/entityProperties.js index 22819541a5..71f3939c56 100644 --- a/scripts/system/create/entityProperties/html/js/entityProperties.js +++ b/scripts/system/create/entityProperties/html/js/entityProperties.js @@ -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", }, {