diff options
author | Ghassen Rjab <rjab.ghassen@gmail.com> | 2017-07-16 09:11:05 +0100 |
---|---|---|
committer | Ghassen Rjab <rjab.ghassen@gmail.com> | 2017-07-16 09:11:05 +0100 |
commit | 0b72eeaf9d6ee975a558bc3d04f561017f7db305 (patch) | |
tree | 6a484c8b93dac68b5e9613e8aae4f71509b5f28d /client | |
parent | 81e0d4e38203ec683aeac96e8fe7cb040170575b (diff) | |
download | wekan-0b72eeaf9d6ee975a558bc3d04f561017f7db305.tar.gz wekan-0b72eeaf9d6ee975a558bc3d04f561017f7db305.tar.bz2 wekan-0b72eeaf9d6ee975a558bc3d04f561017f7db305.zip |
Fix texts in import board page
Diffstat (limited to 'client')
-rw-r--r-- | client/components/import/import.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/import/import.js b/client/components/import/import.js index d02637d6..d72a02dd 100644 --- a/client/components/import/import.js +++ b/client/components/import/import.js @@ -3,7 +3,7 @@ import wekanMembersMapper from './wekanMembersMapper'; BlazeComponent.extendComponent({ title() { - return `import-board-title-${Session.get('importSource')}!`; + return `import-board-title-${Session.get('importSource')}`; }, }).register('importHeaderBar'); @@ -103,7 +103,7 @@ BlazeComponent.extendComponent({ }, instruction() { - return `import-board-instruction-${Session.get('importSource')}!`; + return `import-board-instruction-${Session.get('importSource')}`; }, events() { |