Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
joedixon committed Oct 31, 2018
2 parents 422dd4c + 4fc5910 commit 3a9fda3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/assets/css/main.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions resources/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ nav a:hover {
}

.panel-body td textarea {
overflow-wrap: inherit;
@apply border-none resize-none bg-transparent text-grey-darker w-full font-thin h-auto p-0
}

Expand Down
2 changes: 1 addition & 1 deletion src/Drivers/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function allLanguages()
$directories = Collection::make($this->disk->directories($this->languageFilesPath));

return $directories->mapWithKeys(function ($directory) {
$language = array_last(explode('/', $directory));
$language = basename($directory);

return [$language => $language];
})->filter(function ($language) {
Expand Down

0 comments on commit 3a9fda3

Please sign in to comment.