Skip to content

Commit ed5d3f7

Browse files
scott graysonscott grayson
authored andcommitted
fix optimize bug
1 parent 4534011 commit ed5d3f7

File tree

8 files changed

+9
-1
lines changed

8 files changed

+9
-1
lines changed

PERMISSIONS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,4 @@ If you have many users and items, consider:
158158

159159

160160

161+

resources/views/components/folder-picker.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,4 @@ class="px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-3
7878

7979

8080

81+

resources/views/forms/components/folder-picker.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,4 @@ function moveToRoot() {
5050

5151

5252

53+

resources/views/tables/columns/permissions-column.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{{ $isCreator ? 'bg-blue-100 text-blue-800 dark:bg-blue-900 dark:text-blue-200' : 'bg-gray-100 text-gray-800 dark:bg-gray-800 dark:text-gray-200' }}">
1818

1919
@if($isCreator)
20-
<x-heroicon-o-crown class="w-3 h-3" />
20+
<x-heroicon-o-star class="w-3 h-3" />
2121
<span class="font-medium">{{ $user->name }}</span>
2222
<span class="text-blue-600 dark:text-blue-400">(Owner)</span>
2323
@else
@@ -37,3 +37,4 @@
3737

3838

3939

40+

src/Commands/SeedLibraryCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ public function handle(): int
3232
return self::SUCCESS;
3333
}
3434
}
35+

src/Middleware/RedirectToCorrectEditPage.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ public function handle(Request $request, Closure $next)
3737
return $next($request);
3838
}
3939
}
40+

src/Resources/Pages/CreateLink.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ protected function mutateFormDataBeforeCreate(array $data): array
2121
return $data;
2222
}
2323
}
24+

src/Traits/HasLibraryAccess.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,4 @@ public function getAccessibleRootLibraryItems()
7373
return LibraryItem::whereNull('parent_id')->forUser($this)->get();
7474
}
7575
}
76+

0 commit comments

Comments
 (0)