File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ const AutoViewForm: React.FC<AutoViewFormProps & AutoViewFormSlots> = (props) =>
200200 </ div >
201201 </ div >
202202 </ div >
203- < div className = "" >
203+ < div >
204204 < MarkupModel
205205 value = { model }
206206 tableClass = "w-full border-separate border-spacing-y-1"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ function toAuth(auth?:AuthenticateResponse) {
1313function signIn ( user :AuthenticateResponse ) {
1414 if ( user ) {
1515 Sole . user = toAuth ( user ) !
16- console . debug ( 'signIn' , user , Sole . user )
16+ // console.debug('signIn', user, Sole.user)
1717 Sole . events . publish ( 'signIn' , user )
1818 } else {
1919 signOut ( )
@@ -22,7 +22,7 @@ function signIn(user:AuthenticateResponse) {
2222
2323/** Sign Out currently Authenticated User */
2424function signOut ( ) {
25- console . debug ( 'signOut' , Sole . user )
25+ // console.debug('signOut', Sole.user)
2626 Sole . user = null
2727 Sole . events . publish ( 'signOut' , null )
2828}
@@ -79,7 +79,7 @@ export function canAccess(op?:MetadataOperationType|null) {
7979export function invalidAccessMessage ( op :MetadataOperationType ) {
8080 if ( ! op || ! op . requiresAuth ) return null
8181 const auth = Sole . user
82- console . debug ( 'invalidAccessMessage' , auth , op ?. request ?. name )
82+ // console.debug('invalidAccessMessage', auth, op?.request?.name)
8383 if ( ! auth ) {
8484 return `<b>${ op . request . name } </b> requires Authentication`
8585 }
Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ export function getMetadata(opt?:{assert?:boolean}):any { // use 'any' to avoid
330330/** Explicitly set AppMetadata and save to localStorage */
331331export function setMetadata ( metadata :AppMetadata | null | undefined ) {
332332 if ( metadata && isValid ( metadata ) ) {
333- console . debug ( 'setMetadata' , metadata )
333+ // console.debug('setMetadata', metadata)
334334 metadata . date = toDateTime ( new Date ( ) )
335335 Sole . metadata = metadata
336336 if ( typeof localStorage != 'undefined' ) localStorage . setItem ( metadataPath , JSON . stringify ( metadata ) )
@@ -364,7 +364,7 @@ export function tryLoad() {
364364}
365365
366366export async function downloadMetadata ( metadataPath :string , resolve ?:( ) => Promise < Response > ) {
367- console . debug ( 'downloadMetadata' , metadataPath , ! ! resolve )
367+ // console.debug('downloadMetadata', metadataPath, !!resolve)
368368 let r = resolve
369369 ? await resolve ( )
370370 : await fetch ( metadataPath )
You can’t perform that action at this time.
0 commit comments