Skip to content
Merged

lint #346

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 10 additions & 14 deletions src/assets/styles/components/_web-ide.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
}

.name-input {

.validation-message {
color: $color-danger;
}
Expand Down Expand Up @@ -68,7 +67,6 @@
}

.purple {

button[disabled]:hover,
button[disabled] {
color: #5e5e5e !important;
Expand All @@ -94,16 +92,19 @@

color: white;

color: rgb(105, 105, 105);

.name-input {
.name-input-container {
input.invalid:focus {
border: 1px solid #ea4c89 !important;
outline-color: #ea4c89 !important;
}
}

.validation-message {
margin-top: 8px;
color: $color-danger;
margin-top: 8px;
}

& > input.invalid {
Expand All @@ -125,6 +126,7 @@
.editor-window .cancel-button {
color: rgb(105, 105, 105);;
}

.editor-window .cancel-button:hover {
color: white;
}
Expand All @@ -137,8 +139,6 @@
border-bottom: 1px solid lightgray;
}

color: rgb(105, 105, 105);


.default-window-option {
span {
Expand Down Expand Up @@ -199,13 +199,11 @@

.akamai,
.light {

.editor-window {
border: 1px solid $color-lightergrey;
}

.name-input {

.validation-message {
color: $color-danger;
}
Expand Down Expand Up @@ -295,8 +293,6 @@
}

.web-ide {


.cancel-button {
margin-left: 10px;
}
Expand Down Expand Up @@ -577,10 +573,10 @@
}

.name-input-container {
align-items: center;
display: flex;

flex-direction: row;
align-items: center;

.invalid-project-name {
margin-left: 15px;
Expand Down Expand Up @@ -735,16 +731,16 @@
}

.package-install-window {

.install-package-button {
width: 105px;
display: inline-flex;
align-items: center;
display: inline-flex;
justify-content: center;
width: 105px;

.install-package-status-icon {
}
}

&.github {
line-height:0.5em;
}
Expand Down Expand Up @@ -807,8 +803,8 @@
.project-name-invalid-text {

color: $color-danger !important;
margin-bottom: 20px;
display: block;
margin-bottom: 20px;
}


Expand Down
2 changes: 1 addition & 1 deletion src/assets/styles/pages/_browse.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
}

.card-body {
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 1.5 !important;
padding-left: 25%;
padding-right: 25%;
Expand Down
1 change: 0 additions & 1 deletion src/components/instance/browse/BrowseDatatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ function BrowseDatatable({ tableState, setTableState, activeTable }) {
const [loading, setLoading] = useState(false);
const [loadingFilter, setLoadingFilter] = useState(false);
const [lastUpdate, setLastUpdate] = useState(true);
const [hashAttributeExists,setHashAttributeExists] = useState(false);

useEffect(() => {
controller?.abort();
Expand Down
4 changes: 0 additions & 4 deletions src/components/instance/browse/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,6 @@ function BrowseIndex() {
buildInstanceStructure({ auth, url });
}

const missingPrimaryKey = false;

console.log('hash attr: ', hasHashAttr);

const checkForHashAttribute = () => {
async function check() {
if (table) {
Expand Down