Skip to content

Commit 9e9bbae

Browse files
authored
Fix bug for system identity/resolved app id (#4572)
* Fix bug for system identity/resolved app id * chore: trigger pipeline
1 parent cd1f497 commit 9e9bbae

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tree/ResolvedFunctionAppResource.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,10 @@ export class ResolvedFunctionAppResource extends ResolvedFunctionAppBase impleme
143143
return this.dataModel.name;
144144
}
145145

146+
public get id(): string {
147+
return this.dataModel.id;
148+
}
149+
146150
public get description(): string | undefined {
147151
let state = this._state?.toLowerCase() !== 'running' ? this._state : undefined;
148152
if (this._isFlex && !state) {

0 commit comments

Comments
 (0)