fix: Avoiding LATIN1 unprintables in various UI locations
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 5m8s

This commit is contained in:
Allan 2025-02-17 16:35:18 +00:00
parent 30d5e51d0b
commit bce1fd57ef
5 changed files with 5 additions and 5 deletions

View File

@ -82,7 +82,7 @@ create table out1 (rename=(SUBMITTED_ON_DTTM1=SUBMITTED_ON_DTTM)) as
) )
%webout(OPEN) %webout(OPEN)
%webout(OBJ,fromSAS) %webout(OBJ,fromSAS,missing=STRING)
%webout(CLOSE) %webout(CLOSE)

View File

@ -45,6 +45,6 @@ create table work.fromsas (rename=(SUBMITTED_ON=SUBMITTED_ON_DTTM)) as
) )
%webout(OPEN) %webout(OPEN)
%webout(OBJ,fromSAS) %webout(OBJ,fromSAS,missing=STRING)
%webout(CLOSE) %webout(CLOSE)

View File

@ -136,7 +136,7 @@ run;
) )
%webout(OPEN) %webout(OPEN)
%webout(OBJ,saslibs) %webout(OBJ,saslibs,missing=STRING)
%webout(CLOSE) %webout(CLOSE)
%mpeterm() %mpeterm()

View File

@ -341,7 +341,7 @@ proc sql;
create table ids as select distinct id from graphviz3; create table ids as select distinct id from graphviz3;
%webout(OPEN) %webout(OPEN)
%webout(OBJ,fromSAS) %webout(OBJ,fromSAS,missing=STRING)
%webout(OBJ,ids,dslabel=clickableIDS) %webout(OBJ,ids,dslabel=clickableIDS)
%webout(OBJ,info) %webout(OBJ,info)
%webout(OBJ,flatdata) %webout(OBJ,flatdata)

View File

@ -26,6 +26,6 @@ options metarepository=&repo;
) )
%webout(OPEN) %webout(OPEN)
%webout(OBJ,objects) %webout(OBJ,objects,missing=STRING)
%webout(CLOSE) %webout(CLOSE)
%mpeterm() %mpeterm()