Skip to content

Commit 9e8d319

Browse files
authored
Merge pull request #20 from Arattian/dev-feature
Release 3.2.4
2 parents f7a474b + 14dca26 commit 9e8d319

File tree

8 files changed

+13
-6
lines changed

8 files changed

+13
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/Arattian/DynamoDb-GUI-Client/blob/master/LICENSE)
66

7-
### [Release v3.2.3](https://github.com/Arattian/DynamoDb-GUI-Client/releases/tag/3.2.3)
7+
### [Release v3.2.4](https://github.com/Arattian/DynamoDb-GUI-Client/releases/tag/3.2.4)
88

9-
#### [Download for MacOS (.dmg)](https://github.com/Arattian/DynamoDb-GUI-Client/releases/download/3.2.3/DynamoDbGUI-mac-3.2.3.dmg)
9+
#### [Download for MacOS (.dmg)](https://github.com/Arattian/DynamoDb-GUI-Client/releases/download/3.2.4/DynamoDbGUI-mac-3.2.4.dmg)
1010

11-
#### [Download for MacOS (.zip)](https://github.com/Arattian/DynamoDb-GUI-Client/releases/download/3.2.3/DynamoDbGUI-mac-3.2.3.zip)
11+
#### [Download for MacOS (.zip)](https://github.com/Arattian/DynamoDb-GUI-Client/releases/download/3.2.4/DynamoDbGUI-mac-3.2.4.zip)
1212

1313
### [Release v2.1.1 || Old UI](https://github.com/Arattian/DynamoDb-GUI-Client/releases/tag/v2.1.1)
1414

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dynamodb-gui-client",
3-
"version": "3.2.3",
3+
"version": "3.2.4",
44
"description": "DynamoDb-GUI-Client",
55
"author": {
66
"name": "Misak Poghosyan",

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
border 1px solid #121820 !important
182182
183183
.el-table__fixed::before, .el-table__fixed-right::before
184-
background-color #222932 !important
184+
background-color rgba(0, 0, 0, 0) !important
185185
186186
.jsoneditor-next
187187
display none !important

src/store/modules/database/getters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { RootState } from '@/store/types';
55
const validateForm = (state: DatabaseModuleState) => {
66
const obj: any = state.submitForm.configs;
77
for (const key in obj) {
8-
if (!obj[key]) {
8+
if (!obj[key] && key !== 'dynamoDbCrc32') {
99
return;
1010
}
1111
}

src/store/modules/database/mutations.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ function setToDefault(state: DatabaseModuleState) {
88
region: '',
99
endpoint: '',
1010
maxRetries: 1,
11+
dynamoDbCrc32: false,
1112
};
1213
state.submitForm.port = '';
1314
state.submitForm.name = 'Database ' + (state.list.length + 1);

src/store/modules/database/state.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const state: DatabaseModuleState = {
2929
region: '',
3030
endpoint: '',
3131
maxRetries: 1,
32+
dynamoDbCrc32: false,
3233
},
3334
port: '',
3435
name: '',

src/store/modules/database/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ export interface DbConfigs {
2626
region: string;
2727
endpoint: string;
2828
maxRetries: number;
29+
dynamoDbCrc32: boolean;
2930
}

tests/unit/testData.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export const fakeSubmitForm = {
55
region: 'localhost',
66
endpoint: 'http://localhost:8000',
77
maxRetries: 2,
8+
dynamoDbCrc32: false,
89
},
910
port: '8000',
1011
name: 'Database 1',
@@ -19,6 +20,7 @@ export const duplicateDbName = {
1920
region: 'localhost',
2021
endpoint: 'http://localhost:8000',
2122
maxRetries: 2,
23+
dynamoDbCrc32: false,
2224
},
2325
port: '8000',
2426
name: 'Database 1',
@@ -33,6 +35,7 @@ export const wrongSubmitForm = {
3335
region: 'localhost',
3436
endpoint: 'wrongEndpoint',
3537
maxRetries: 2,
38+
dynamoDbCrc32: false,
3639
},
3740
port: '1010',
3841
name: 'Database 1',
@@ -47,6 +50,7 @@ export const emptySubmitForm = {
4750
region: 'es-west',
4851
endpoint: 'http://localhost',
4952
maxRetries: 2,
53+
dynamoDbCrc32: false,
5054
},
5155
port: '',
5256
name: 'Database 1',

0 commit comments

Comments
 (0)