Skip to content

Commit f762a49

Browse files
committed
refactor: run prettier
1 parent 1776dd7 commit f762a49

File tree

5 files changed

+36
-30
lines changed

5 files changed

+36
-30
lines changed

src/components/Console/index.module.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
color: #f00;
1818
font-size: 12px;
1919
font-family: Sora;
20+
white-space: pre-wrap;
2021
background: rgba(255, 0, 0, 0.05);
2122
border: 1px solid rgba(255, 0, 0, 0.1);
2223
border-radius: 6px;
23-
white-space: pre-wrap;
2424
}
2525

2626
.closeButton {
@@ -54,7 +54,7 @@
5454
}
5555

5656
.body {
57-
padding: 16px 0;
5857
height: 240px;
58+
padding: 16px 0;
5959
overflow-y: auto;
60-
}
60+
}

src/components/DataSourceSelection/index.module.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
.tilesWrapper {
3535
display: flex;
3636
justify-content: center;
37-
}
37+
}

src/global.less

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,73 +7,73 @@ body,
77
}
88

99
@font-face {
10-
font-family: 'Montserrat';
11-
src: url('/public/fonts/Montserrat-Regular.ttf') format('truetype');
1210
font-weight: 500;
11+
font-family: "Montserrat";
1312
font-style: normal;
13+
src: url("/public/fonts/Montserrat-Regular.ttf") format("truetype");
1414
}
1515

1616
@font-face {
17-
font-family: 'Montserrat';
18-
src: url('/public/fonts/Montserrat-Bold.ttf') format('truetype');
1917
font-weight: 700;
18+
font-family: "Montserrat";
2019
font-style: normal;
20+
src: url("/public/fonts/Montserrat-Bold.ttf") format("truetype");
2121
}
2222

2323
@font-face {
24-
font-family: 'Manrope';
25-
src: url('/public/fonts/Manrope-Light.ttf') format('truetype');
2624
font-weight: 200;
25+
font-family: "Manrope";
2726
font-style: normal;
27+
src: url("/public/fonts/Manrope-Light.ttf") format("truetype");
2828
}
2929

3030
@font-face {
31-
font-family: 'Manrope';
32-
src: url('/public/fonts/Manrope-ExtraLight.ttf') format('truetype');
3331
font-weight: 300;
32+
font-family: "Manrope";
3433
font-style: normal;
34+
src: url("/public/fonts/Manrope-ExtraLight.ttf") format("truetype");
3535
}
3636

3737
@font-face {
38-
font-family: 'Manrope';
39-
src: url('/public/fonts/Manrope-Regular.ttf') format('truetype');
4038
font-weight: 400;
39+
font-family: "Manrope";
4140
font-style: normal;
41+
src: url("/public/fonts/Manrope-Regular.ttf") format("truetype");
4242
}
4343

4444
@font-face {
45-
font-family: 'Manrope';
46-
src: url('/public/fonts/Manrope-Medium.ttf') format('truetype');
4745
font-weight: 500;
46+
font-family: "Manrope";
4847
font-style: normal;
48+
src: url("/public/fonts/Manrope-Medium.ttf") format("truetype");
4949
}
5050

5151
@font-face {
52-
font-family: 'Manrope';
53-
src: url('/public/fonts/Manrope-SemiBold.ttf') format('truetype');
5452
font-weight: 600;
53+
font-family: "Manrope";
5554
font-style: normal;
55+
src: url("/public/fonts/Manrope-SemiBold.ttf") format("truetype");
5656
}
5757

5858
@font-face {
59-
font-family: 'Manrope';
60-
src: url('/public/fonts/Manrope-Bold.ttf') format('truetype');
6159
font-weight: 700;
60+
font-family: "Manrope";
6261
font-style: normal;
62+
src: url("/public/fonts/Manrope-Bold.ttf") format("truetype");
6363
}
6464

6565
@font-face {
66-
font-family: 'Sora';
67-
src: url('/public/fonts/Sora-Regular.ttf') format('truetype');
6866
font-weight: normal;
67+
font-family: "Sora";
6968
font-style: normal;
69+
src: url("/public/fonts/Sora-Regular.ttf") format("truetype");
7070
}
7171

7272
@font-face {
73-
font-family: 'Sora';
74-
src: url('/public/fonts/Sora-Bold.ttf') format('truetype');
7573
font-weight: bold;
74+
font-family: "Sora";
7675
font-style: normal;
76+
src: url("/public/fonts/Sora-Bold.ttf") format("truetype");
7777
}
7878

7979
@font-face {

src/graphql/gql/currentUser.gql

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,10 @@ query TeamData($team_id: uuid!) {
129129
db_type
130130
created_at
131131
updated_at
132-
branches(where: { status: { _in: [active, created] } }, order_by: { created_at: desc }) {
132+
branches(
133+
where: { status: { _in: [active, created] } }
134+
order_by: { created_at: desc }
135+
) {
133136
...BranchesFields
134137
}
135138
sql_credentials(order_by: { updated_at: desc }) {
@@ -202,7 +205,10 @@ subscription SubTeamData($team_id: uuid!) {
202205
db_type
203206
created_at
204207
updated_at
205-
branches(where: { status: { _in: [active, created] } }, order_by: { created_at: desc }) {
208+
branches(
209+
where: { status: { _in: [active, created] } }
210+
order_by: { created_at: desc }
211+
) {
206212
...BranchesFields
207213
}
208214
sql_credentials {

src/graphql/gql/explorations.gql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
mutation CreateExploration ($object: explorations_insert_input!) {
1+
mutation CreateExploration($object: explorations_insert_input!) {
22
insert_explorations_one(object: $object) {
33
id
44
}
55
}
66

7-
mutation GenSQL ($exploration_id: uuid!) {
7+
mutation GenSQL($exploration_id: uuid!) {
88
gen_sql(exploration_id: $exploration_id) {
99
result
1010
}
1111
}
1212

13-
query CurrentExploration ($id: uuid!, $offset: Int, $limit: Int) {
13+
query CurrentExploration($id: uuid!, $offset: Int, $limit: Int) {
1414
explorations_by_pk(id: $id) {
1515
id
1616
branch_id
@@ -27,4 +27,4 @@ query CurrentExploration ($id: uuid!, $offset: Int, $limit: Int) {
2727
progress
2828
hitLimit
2929
}
30-
}
30+
}

0 commit comments

Comments
 (0)