File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
oss-console/src/components/Executions/Tables Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11export interface Env extends NodeJS . ProcessEnv {
22 ADMIN_API ?: string ;
33 /**
4- * @depricated use BASE_HREF
4+ * @deprecated use BASE_HREF
55 */
66 BASE_URL ?: string ;
77
@@ -56,7 +56,7 @@ const makeEnvInit = () => {
5656 if ( envInit . BASE_URL ) {
5757 if ( envInit . NODE_ENV !== 'test' && envInit . NODE_ENV !== 'production' ) {
5858 // eslint-disable-next-line no-console
59- console . warn ( 'BASE_URL will be depricated .' ) ;
59+ console . warn ( 'BASE_URL will be deprecated .' ) ;
6060 }
6161 }
6262
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const grayedClassName = 'grayed';
1313// specificity in the browser. The execution table styles are overridden by
1414// the columns styles in some cases. So the column styles should be defined
1515// last.
16- // DEPRICATED , REMOVE ONCE VARIFIED
16+ // DEPRECATED , REMOVE ONCE VERIFIED
1717const executionTableStylesNameSpace = 'EXECUTION_TABLE-' ;
1818const executionTableStyles : Record < string , string > = {
1919 filters : `${ executionTableStylesNameSpace } filters` ,
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ const ADMIN_API = ADMIN_API_URL ? `//${ADMIN_API_URL}` : '';
4040const LOCAL_DEV_HOST = process . env . LOCAL_DEV_HOST || 'localhost' ;
4141
4242/**
43- * @depricated use BASE_HREF
43+ * @deprecated use BASE_HREF
4444 */
4545const BASE_URL = process . env . BASE_URL || '' ;
4646
You can’t perform that action at this time.
0 commit comments