From 5c56e90e305c621fb1259e4ce307f08863f28da0 Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Thu, 4 Jan 2024 21:06:12 +0100 Subject: [PATCH] Rename components -> traits See https://github.com/thekid/crews/pull/4#discussion_r1442169705 --- src/main/handlebars/group.handlebars | 6 +++--- src/main/handlebars/index.handlebars | 2 +- .../handlebars/{components => traits}/editor.handlebars | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename src/main/handlebars/{components => traits}/editor.handlebars (100%) diff --git a/src/main/handlebars/group.handlebars b/src/main/handlebars/group.handlebars index e9406fc..a7620f5 100755 --- a/src/main/handlebars/group.handlebars +++ b/src/main/handlebars/group.handlebars @@ -18,7 +18,7 @@
- {{> components/editor id="post" field="body"}} + {{> traits/editor id="post" field="body"}}
@@ -48,7 +48,7 @@ {{#*inline "edit"}}
- {{> components/editor id=_id field="body" value=body}} + {{> traits/editor id=_id field="body" value=body}}
@@ -58,7 +58,7 @@ {{/inline}} {{#*inline "update"}} - {{> components/editor id=_id field="description" value=description}} + {{> traits/editor id=_id field="description" value=description}}
diff --git a/src/main/handlebars/index.handlebars b/src/main/handlebars/index.handlebars index 06e29a9..72d6099 100755 --- a/src/main/handlebars/index.handlebars +++ b/src/main/handlebars/index.handlebars @@ -39,7 +39,7 @@
- {{> components/editor id="group" field="description"}} + {{> traits/editor id="group" field="description"}}
diff --git a/src/main/handlebars/components/editor.handlebars b/src/main/handlebars/traits/editor.handlebars similarity index 100% rename from src/main/handlebars/components/editor.handlebars rename to src/main/handlebars/traits/editor.handlebars