This commit is contained in:
claire bontempo 2022-10-20 09:54:54 -07:00 committed by GitHub
parent 826b792fee
commit 8a378af08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,7 @@ export default Service.extend({
mode: null,
getMode() {
this.mode;
return this.mode;
},
setMode(mode) {

View File

@ -22,7 +22,6 @@
.column {
align-self: center;
padding-left: 0px;
padding: $spacing-m;
&.info-table-row-edit {

View File

@ -20,7 +20,7 @@ code {
}
code,
pre {
font-smoothing: inherit;
font-smooth: inherit;
-webkit-font-smoothing: inherit;
}

View File

@ -56,7 +56,7 @@ export default class InfoTableItemArray extends Component {
get displayArrayTruncated() {
let { displayArray } = this.args;
if (!displayArray) return null;
if ((displayArray.length >= 10) & !this.args.doNotTruncate) {
if (displayArray.length >= 10 && !this.args.doNotTruncate) {
// if array greater than 10 in length only display the first 5
return displayArray.slice(0, 5);
}