0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 23:49:45 -05:00

Merge pull request #2464 from penpot/superalex-remove-imported-and-updated-extra-words

🎉 Remove imported and updated extra words
This commit is contained in:
Eva Marco 2022-10-17 13:09:15 +02:00 committed by GitHub
commit ac3251b29e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 3 deletions

View file

@ -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!)

View file

@ -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)

View file

@ -127,6 +127,9 @@
width: 100%;
white-space: nowrap;
max-width: 260px;
&::first-letter {
text-transform: capitalize;
}
@media #{$bp-max-1366} {
max-width: 230px;
}

View file

@ -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]