Skip to content

Commit

Permalink
Merge pull request #6 from Exabyte-io/fix/SOF-6197
Browse files Browse the repository at this point in the history
chore: rename static class variables
  • Loading branch information
timurbazhirov committed Aug 31, 2022
2 parents ac9ae6a + 8f1170b commit b9e49f8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@babel/register": "^7.16.0",
"@babel/runtime-corejs3": "7.16.8",
"@exabyte-io/application-flavors.js": "2022.7.24-0",
"@exabyte-io/code.js": "2022.8.30-0",
"@exabyte-io/code.js": "2022.8.31-0",
"@exabyte-io/made.js": "2022.6.15-0",
"@exabyte-io/periodic-table.js": "2022.6.8-0",
"lodash": "^4.17.21",
Expand Down
4 changes: 2 additions & 2 deletions src/context/providers/espresso/providers.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class QEPWXContextProvider extends mix(ExecutableContextProvider).with(
WorkflowContextMixin,
JobContextMixin,
) {
static materialCls = Made.Material;
static Material = Made.Material;

get atomSymbols() {
return this.material.Basis.uniqueElements;
Expand Down Expand Up @@ -103,7 +103,7 @@ export class QENEBContextProvider extends mix(ExecutableContextProvider).with(
WorkflowContextMixin,
JobContextMixin,
) {
static materialCls = Made.Material;
static Material = Made.Material;

getData() {
const sortedMaterials = this.sortMaterialsByIndexInSet(this.materials);
Expand Down
2 changes: 1 addition & 1 deletion src/context/providers/nwchem/providers.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class NWChemTotalEnergyContextProvider extends mix(ExecutableContextProvi
WorkflowContextMixin,
JobContextMixin,
) {
static materialCls = Made.Material;
static Material = Made.Material;

get atomSymbols() {
return this.material.Basis.uniqueElements;
Expand Down
4 changes: 2 additions & 2 deletions src/context/providers/vasp/providers.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class VASPContextProvider extends mix(ExecutableContextProvider).with(
WorkflowContextMixin,
JobContextMixin,
) {
static materialCls = Made.Material;
static Material = Made.Material;

/*
* @NOTE: Overriding getData makes this provider "stateless", ie. delivering data from scratch each time and not
Expand All @@ -44,7 +44,7 @@ export class VASPNEBContextProvider extends mix(ExecutableContextProvider).with(
WorkflowContextMixin,
JobContextMixin,
) {
static materialCls = Made.Material;
static Material = Made.Material;

getData() {
const sortedMaterials = this.sortMaterialsByIndexInSet(this.materials);
Expand Down

0 comments on commit b9e49f8

Please sign in to comment.