File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1519,15 +1519,16 @@ class PredbatTableCard extends HTMLElement {
15191519 cellResponseArray . push ( this . getCellsForSplitCell ( theItem , newCell ) ) ;
15201520
15211521 } else {
1522-
1523- stateText = this . adjustStatusFields ( theItem . value ) ;
1522+
1523+ stateText = theItem . value . replace ( / [ ↘ ↗ → ⅎ 🐌 ⚠ ] / g, '' ) . trim ( ) ;
1524+ stateText = this . adjustStatusFields ( stateText ) ;
15241525 if ( this . config . use_friendly_states )
15251526 stateText = this . getFriendlyNamesForState ( theItem . value ) ;
15261527
15271528 cellResponseArray = this . replaceArrowsWithIcons ( theItem . value ) ;
15281529
1529- if ( this . config . use_friendly_states )
1530- cellResponseArray [ 0 ] = stateText ;
1530+ // if(this.config.use_friendly_states)
1531+ cellResponseArray [ 0 ] = stateText ;
15311532 }
15321533 } else {
15331534
You can’t perform that action at this time.
0 commit comments