Skip to content

Commit

Permalink
-[x] typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PG-Momik committed Jul 9, 2024
1 parent 2e9540b commit d716327
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion app/XlsImporter/Foundation/Mapper/XlsMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function process(array $xlsData, string $xlsType, $userId, $orgId, $repor

$xls_data_storage_path = 'XlsImporter/tmp';
$validatedDataFilePath = sprintf('%s/%s/%s/%s', $xls_data_storage_path, $orgId, $userId, 'valid.json');
$statusFilePath = sprintf('%s/%s/% s/%s', $xls_data_storage_path, $orgId, $userId, 'status.json');
$statusFilePath = sprintf('%s/%s/%s/%s', $xls_data_storage_path, $orgId, $userId, 'status.json');
$globalErrorFilePath = sprintf('%s/%s/%s/%s', $xls_data_storage_path, $orgId, $userId, 'globalError.json');
$xlsMapper = new $mapper();
$xlsMapper->initMapper($validatedDataFilePath, $statusFilePath, $globalErrorFilePath, $dbIatiIdentifiers);
Expand Down
32 changes: 16 additions & 16 deletions resources/assets/sass/component/_input.scss
Original file line number Diff line number Diff line change
Expand Up @@ -256,41 +256,41 @@ label {
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection:not(:focus) {
+ .select2
.selection
.select2-selection:not(:focus) {
border: 2px solid #3f9a7c;
background-color: #3f9a7c15;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection:not(:focus) {
+ .select2
.selection
.select2-selection:not(:focus) {
border: 2px solid #3f9a7c;
background-color: #3f9a7c15;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection
.select2-selection__placeholder {
+ .select2
.selection
.select2-selection
.select2-selection__placeholder {
color: var(--bluecoral-50);
}

select.select2.default-value-indicator
+ .select2.select2-container--open
.selection
.select2-selection {
+ .select2.select2-container--open
.selection
.select2-selection {
border: 1px solid #a6b5ba;
background-color: transparent;
}

select.select2.default-value-indicator
+ .select2
.selection
.select2-selection.select2-selection--clearable {
+ .select2
.selection
.select2-selection.select2-selection--clearable {
border: 1px solid #a6b5ba;
background-color: transparent;
}
Expand Down

0 comments on commit d716327

Please sign in to comment.