mirror of
https://github.com/penpot/penpot.git
synced 2025-03-12 07:41:43 -05:00
🎉 Remove imported and updated extra words
This commit is contained in:
parent
e2f6274ff2
commit
a8150e1b05
4 changed files with 5 additions and 3 deletions
|
@ -44,7 +44,6 @@
|
||||||
- Fix boards grouped shouldn't show the title [Taiga #4251](https://tree.taiga.io/project/penpot/issue/4251)
|
- 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 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 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
|
### :arrow_up: Deps updates
|
||||||
### :heart: Community contributions by (Thank you!)
|
### :heart: Community contributions by (Thank you!)
|
||||||
|
|
|
@ -634,7 +634,7 @@
|
||||||
|
|
||||||
params {:id file-id'
|
params {:id file-id'
|
||||||
:project-id project-id
|
:project-id project-id
|
||||||
:name (str "Imported: " (:name file))
|
:name (:name file)
|
||||||
:revn (:revn file)
|
:revn (:revn file)
|
||||||
:is-shared (:is-shared file)
|
:is-shared (:is-shared file)
|
||||||
:data (blob/encode data)
|
:data (blob/encode data)
|
||||||
|
|
|
@ -127,6 +127,9 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
max-width: 260px;
|
max-width: 260px;
|
||||||
|
&::first-letter {
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
@media #{$bp-max-1366} {
|
@media #{$bp-max-1366} {
|
||||||
max-width: 230px;
|
max-width: 230px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -163,7 +163,7 @@
|
||||||
(let [locale (mf/deref i18n/locale)
|
(let [locale (mf/deref i18n/locale)
|
||||||
time (dt/timeago modified-at {:locale locale})]
|
time (dt/timeago modified-at {:locale locale})]
|
||||||
[:span.date
|
[:span.date
|
||||||
(str (tr "ds.updated-at" time))]))
|
time]))
|
||||||
|
|
||||||
(defn create-counter-element
|
(defn create-counter-element
|
||||||
[_element file-count]
|
[_element file-count]
|
||||||
|
|
Loading…
Add table
Reference in a new issue