Skip to content

Commit d8daf2d

Browse files
fix: manage description info
1 parent 5f1c8fc commit d8daf2d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/actions/Action.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export class Action {
66
public _isPortofinoAction = true;
77
http: NooNoo;
88

9-
#description: any;
9+
#description: any|undefined;
1010

1111
constructor(
1212
parentNooNoo: NooNoo,

src/actions/LoginAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export class LoginAction extends Action {
3838
loginAction = action
3939
}
4040

41-
super(_nooNoo, loginAction, crudActionClasses);
41+
super(_nooNoo, loginAction, crudActionClasses,undefined);
4242
this.is_authenticated = !!localStorage.getItem(JWT_KEY);
4343
}
4444

src/actions/RootAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import NooNoo from '../NooNoo';
33

44
export class RootAction extends Action {
55
constructor(nooNoo: NooNoo, crudActionClasses: string[] | undefined) {
6-
super(nooNoo, '', crudActionClasses);
6+
super(nooNoo, '', crudActionClasses,undefined);
77
}
88

99
changeBaseUrl(url: string) {

0 commit comments

Comments
 (0)