Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Junjiequan committed Jun 15, 2023
1 parent 83b6170 commit e984ae9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 25 deletions.
35 changes: 17 additions & 18 deletions .github/workflows/gitlab.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@

name: CI

on:
push:
branches:
- master
on:
push:
branches:
- master

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: trigger Job
uses: appleboy/gitlab-ci-action@master
with:
url: "https://gitlab.esss.lu.se/api/v4/projects/1956/ref/master/trigger/pipeline"
token: ${{ secrets.GITLAB_TOKEN }}
project_id: 1956
ref: "master"
host: "https://gitlab.esss.lu.se"
debug: true
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: trigger Job
uses: appleboy/gitlab-ci-action@master
with:
url: "https://gitlab.esss.lu.se/api/v4/projects/1956/ref/master/trigger/pipeline"
token: ${{ secrets.GITLAB_TOKEN }}
project_id: 1956
ref: "master"
host: "https://gitlab.esss.lu.se"
debug: true
2 changes: 1 addition & 1 deletion res/themes/light/css/_light.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $panel-actions: rgba($tertiary-content, 0.2);
$space-nav: rgba($tertiary-content, 0.15);

$accent: #0094ca;
$alert: #FF5B55;
$alert: #ff5b55;
$links: #0086e6;
$link-external: #0467dd;

Expand Down
12 changes: 6 additions & 6 deletions src/components/views/auth/PasswordLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import classNames from "classnames";
import { _t } from "../../../languageHandler";
import SdkConfig from "../../../SdkConfig";
import { ValidatedServerConfig } from "../../../utils/ValidatedServerConfig";
import { ButtonEvent } from "../elements/AccessibleButton";
// import AccessibleButton, { ButtonEvent } from "../elements/AccessibleButton";
import withValidation, { IFieldState, IValidationResult } from "../elements/Validation";
import Field from "../elements/Field";
import CountryDropdown from "./CountryDropdown";
Expand Down Expand Up @@ -90,11 +90,11 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
};
}

private onForgotPasswordClick = (ev: ButtonEvent): void => {
ev.preventDefault();
ev.stopPropagation();
this.props.onForgotPasswordClick?.();
};
// private onForgotPasswordClick = (ev: ButtonEvent): void => {
// ev.preventDefault();
// ev.stopPropagation();
// this.props.onForgotPasswordClick?.();
// };

private onSubmitForm = async (ev: SyntheticEvent): Promise<void> => {
ev.preventDefault();
Expand Down

0 comments on commit e984ae9

Please sign in to comment.