diff --git a/frontend/src/app/shared/components/truncate/truncate.component.html b/frontend/src/app/shared/components/truncate/truncate.component.html index 94208f3a4..d75b683f2 100644 --- a/frontend/src/app/shared/components/truncate/truncate.component.html +++ b/frontend/src/app/shared/components/truncate/truncate.component.html @@ -11,9 +11,11 @@ + {{text.slice(0,-lastChars)}}{{text.slice(-lastChars)}} + {{text.slice(lastChars)}}{{text.slice(0,lastChars)}} \ No newline at end of file diff --git a/frontend/src/app/shared/components/truncate/truncate.component.scss b/frontend/src/app/shared/components/truncate/truncate.component.scss index 315ce4e12..97233e5d6 100644 --- a/frontend/src/app/shared/components/truncate/truncate.component.scss +++ b/frontend/src/app/shared/components/truncate/truncate.component.scss @@ -27,4 +27,9 @@ &.inline { display: inline-flex; } +} + +.hidden { + color: transparent; + position: absolute; } \ No newline at end of file