The dashboard should offer the ability to toggle the theme between:
- Automatic (System)
- Light
- Dark
Further, the dashboard should have a "Theme" option to force a theme mode.
Repositories:
(739)
Labels:
(5)
Found 60 issues
First time here? 👋
Welcome to Find a PR.
Find a PR is an open-source site that is built to help developers find projects so that they can submit their very first pull request.
If you're a contributor looking to find a project to contribute to, feel free to browse through the list below.
If you're a maintainer looking to list your project on Find a PR, you can read how to do this in the documentation.
The dashboard should offer the ability to toggle the theme between:
Further, the dashboard should have a "Theme" option to force a theme mode.
jbrooksuk
3rd Oct 2024 @ 18:34
In raising this issue, I confirm the following (please check boxes):
One of the important reasons for using hyperscript is that it handles escaping of characters which are reserved in html. Which prevents XSS.
spatie/html-element does not do this. Mainly because it uses strings as intermediate format instead of an object representation of the DOM.
Erikvv
1st Feb 2018 @ 02:19
Many of them are out of date, some by a few major versions!
It would be great to get these into good order and start keeping them up to date
simonhamp
24th Oct 2024 @ 11:53
Let's try out Filament and move our own admin panels to it. This should provide us with a much more powerful admin backend.
driesvints
22nd Dec 2023 @ 09:06
When using the addToMediaFromURL method, I'm receiving a Could Not Load Image error on the server, but not locally (I'm using Laravel Vapor) and not with other image formats.
The code below is where the error is occuring and that code is receiving an absolute file path to the image in s3, which is available.
public function addToMediaLibrary($file_path) { $media = $this->addMediaFromUrl($file_path) ->toMediaCollection("", 's3'); return $media; }
As an example the file path when logged out is https://s3.sitesforsaas.com/tenants/d221c93a-3757-466c-bf83-b74a9ee64c04/sites/9cfc24c7-cb2a-4c5a-8c0f-73ecdc79c166/2024/09/4e9854b0-4f2d-4931-a726-01f557bd7fc6.webp
, but the error is looking for the image in local 'tmp' storage for some reason.
Could not load image at path
/tmp/storage/tenantd221c93a-3757-466c-bf83-b74a9ee64c04/media-library/temp/j7pNMerUdReNx9MfAG5rKjcmGHWu4i99/LM2UYMTcYU0BO8sLsTfeOBpS9eXximejlarge.webp`",
josiahmann
11th Sep 2024 @ 21:32
We need to implement the metric charts into the status page.
jbrooksuk
5th Mar 2024 @ 16:00
After installation, I noticed that in the browser console it outputs an error of wireEl is undefined.
Just install this package in a livewire project, preferable with Filament's admin package. And see the browser console.
composer create-project laravel/laravel test;
composer require filamentphp/filament;
composer require spatie/laravel-blade-comments;
Then go through the browser console and see the error
1.0.1
8.2.0
10.13.0
macOS
Filament ......................................................
Packages ...... filament, forms, notifications, support, tables
Version .............................................. v2.17.44
Views ..................................... PUBLISHED: filament
sawirricardo
2nd Jun 2023 @ 07:15
The docs aren't finished. This issue exists to track the missing pieces:
simonhamp
8th Sep 2024 @ 15:01
When attempting to filter tests by test or file name pressing the "Enter" key has no effect.
Pressing "Enter" at the default screen correctly triggers a "test run" where all tests are run.
ntwb
25th Feb 2018 @ 10:49
Figure our a way to show a grayed out Laravel logo as a default avatar instead of the current default GitHub one.
driesvints
29th Sep 2021 @ 10:48
Found the \Illuminate\Database\Eloquent\Concerns\HasAttributes::originalIsEquivalent()
method during code diving and it should be usable for our trait! 🎉
This PR would be mainly reasearch when that method was added, if it's compatible with our version support rules and switching our own change detection logic with the core one.
Gummibeer
20th Oct 2021 @ 10:03
It should be possible to report an incident and attach components (with statuses) to incidents in a single API request.
jbrooksuk
24th Dec 2024 @ 12:16
Describe the bug
When you attempt to dump a binary string or anything containing one (like an array or an object), Ray does not dump anything. It just fails silently.
Versions
Ray version (you can see this in "About Ray"): 2.8.1
You can use composer show
to get the version numbers of:
PHP version: 8.2.17 Laravel version (if applicable): 11.18.1
To Reproduce
Add this in your code:
ray(hex2bin('ae0f3d'));
Expected behavior
Ray should display this (like the console when dump
is used):
b"®\x0F="
Desktop (please complete the following information):
sebj54
27th Aug 2024 @ 14:57
I just installed package and complement for AI powered solution. When I create an issue to test it I get :
I had to change the links function like this to make it work for me:
public function links(): array
{
$rawText = Str::finish($this->rawText, 'ENDLINKS');
$textLinks = $this->between('LINKS', 'ENDLINKS', $rawText);
$textLinks = explode(PHP_EOL, $textLinks);
$links = [];
foreach ($textLinks as $textLink) {
$textLink = str_replace('\\', '\\\\', $textLink);
$textLink = str_replace('\\\\\\', '\\\\', $textLink);
$decodedLink = json_decode($textLink, true);
if ($decodedLink !== null) {
$links[$decodedLink['title']] = $decodedLink['url'];
}
}
return $links;
}
When I install the package in my project and use it with AI powered
1.0
8.2.14
11.14
Windows
No response
bestmomo
21st Jul 2024 @ 10:57
Q | A |
---|---|
Feature PR | symfony/symfony#59315 |
PR author(s) | @gr8b |
Merged in | 7.3 |
We created this issue to not forget to document this new feature. We would really appreciate if you can help us with this task. If you are not sure how to do it, please ask us and we will help you.
To fix this issue, please create a PR against the 7.3 branch in the symfony-docs repository.
Thank you! :smiley:
fabpot
2nd Jan 2025 @ 11:55
Cachet 2.x can store custom meta data to be passed to incidents. We can extend this in 3.x to support custom meta on most, if not all models.
Meta
model.jbrooksuk
14th Sep 2023 @ 18:51
We need to bring back support for tags.
jbrooksuk
13th Sep 2023 @ 20:45
cachet.php
config. This could also be sync.jbrooksuk
3rd Oct 2024 @ 18:42
We need a method of migrating users from 2.4 to 3.x.
Things to consider:
AOB (please add to this list)
As a comment on the latter, once #183 is merged, we'll need to programmatically migrate users 2.4 API Keys to 3.x using something like the following
$v2ApiKey = $v2User->api_key;
$v3User->tokens()->create([
'name' => 'v2.4 API Key',
'token' => hash('sha256', $v2ApiKey),
'abilities' => ['*'],
'expires_at' => now()->addDays(90),
]);
@jbrooksuk We need to decide on the abilities
and expires_at
. IMO it makes sense to throw something into the upgrade documentation that old 2.4 API Keys will continue to work for up to 90 days. But if they want to use the API after that, then they'll need to generate a new API Token using the 3.x dashboard.
joelbutcher
15th Jan 2025 @ 18:19
Incidents can be marked as “Sticky” which I think actually makes more sense to just be labelled as “Pin to top”. Logic needs implementing for this.
jbrooksuk
3rd Oct 2024 @ 18:30
Add code snippets for each block
willemvb
25th Jul 2016 @ 12:49