From a8150e1b0555d8e58c534012cc5dffde6297e8fc Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Mon, 17 Oct 2022 07:02:00 +0200 Subject: [PATCH] :tada: Remove imported and updated extra words --- CHANGES.md | 1 - backend/src/app/rpc/commands/binfile.clj | 2 +- frontend/resources/styles/main/partials/dashboard-grid.scss | 3 +++ frontend/src/app/main/ui/dashboard/grid.cljs | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c35c9e4f9..00b276709 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -44,7 +44,6 @@ - Fix boards grouped shouldn't show the title [Taiga #4251](https://tree.taiga.io/project/penpot/issue/4251) - Fix gradient handlers are under resize handlers[Taiga #4298](https://tree.taiga.io/project/penpot/issue/4298) - Fix grid not syncing immediately in multiuser [Taiga #4339](https://tree.taiga.io/project/penpot/issue/4339) -- Fix assertions error when trying to move board if Path tool selected [Taiga #4248](https://tree.taiga.io/project/penpot/issue/4248) ### :arrow_up: Deps updates ### :heart: Community contributions by (Thank you!) diff --git a/backend/src/app/rpc/commands/binfile.clj b/backend/src/app/rpc/commands/binfile.clj index 522dfffee..d012db8f6 100644 --- a/backend/src/app/rpc/commands/binfile.clj +++ b/backend/src/app/rpc/commands/binfile.clj @@ -634,7 +634,7 @@ params {:id file-id' :project-id project-id - :name (str "Imported: " (:name file)) + :name (:name file) :revn (:revn file) :is-shared (:is-shared file) :data (blob/encode data) diff --git a/frontend/resources/styles/main/partials/dashboard-grid.scss b/frontend/resources/styles/main/partials/dashboard-grid.scss index 64341c9bb..130acb1bf 100644 --- a/frontend/resources/styles/main/partials/dashboard-grid.scss +++ b/frontend/resources/styles/main/partials/dashboard-grid.scss @@ -127,6 +127,9 @@ width: 100%; white-space: nowrap; max-width: 260px; + &::first-letter { + text-transform: capitalize; + } @media #{$bp-max-1366} { max-width: 230px; } diff --git a/frontend/src/app/main/ui/dashboard/grid.cljs b/frontend/src/app/main/ui/dashboard/grid.cljs index 83df57226..916547ecc 100644 --- a/frontend/src/app/main/ui/dashboard/grid.cljs +++ b/frontend/src/app/main/ui/dashboard/grid.cljs @@ -163,7 +163,7 @@ (let [locale (mf/deref i18n/locale) time (dt/timeago modified-at {:locale locale})] [:span.date - (str (tr "ds.updated-at" time))])) + time])) (defn create-counter-element [_element file-count]