Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tichon29 committed Jan 6, 2021
1 parent 5fddea7 commit 317ec02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/components/module/Retry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default {
this.$refs[`progress-${this.index}`][0].style.backgroundColor = 'var(--mollitia-info-color)';
}
},
setErrorStyleForPreviousTry() {
setErrorStyleForPreviousTry () {
for (let i = 0; i < this.index; i++) {
this.$refs[`progress-${i}`][0].style.backgroundColor = 'var(--mollitia-error-color)';
this.$refs[`progress-${i}`][0].style.width = '100%';
Expand Down
2 changes: 1 addition & 1 deletion src/module/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export abstract class CacheOptions extends ModuleOptions {
getInformationFromCache? : boolean;
}

type CacheT<T extends unknown> = T & {
type CacheT<T> = T & {
_mollitiaIsFromCache: boolean
};

Expand Down

0 comments on commit 317ec02

Please sign in to comment.