Skip to content

Commit

Permalink
revert getFrameworkInfo() renaming to original name
Browse files Browse the repository at this point in the history
  • Loading branch information
mariscalromeroalejandro committed Feb 7, 2025
1 parent 4e678ab commit a2de99a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion QualityControl/public/Model.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ export default class Model extends Observable {
case 'about':
this.page = 'about';
setBrowserTabTitle('QCG-About');
this.aboutViewModel.getAboutViewModel();
this.aboutViewModel.getFrameworkInfo();
this.notify();
break;
default:
Expand Down
4 changes: 2 additions & 2 deletions QualityControl/public/pages/aboutView/AboutViewModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ export default class AboutViewModel extends Observable {
}

/**
* Load About Model into `item`
* Load info about the framework into `item`
* @returns {undefined}
*/
async getAboutViewModel() {
async getFrameworkInfo() {
this.item = RemoteData.loading();
this.notify();

Expand Down

0 comments on commit a2de99a

Please sign in to comment.