We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da260e7 commit a8161eeCopy full SHA for a8161ee
backend/app/Resources/Image/ImageResource.php
@@ -16,6 +16,7 @@ public function toArray($request): array
16
return [
17
'id' => $this->getId(),
18
'url' => Url::getCdnUrl($this->getPath()),
19
+ 'path' => $this->getPath(),
20
'size' => $this->getSize(),
21
'file_name' => $this->getFileName(),
22
'mime_type' => $this->getMimeType(),
frontend/src/components/common/CustomSelect/index.tsx
@@ -112,7 +112,9 @@ export const CustomSelect = ({
112
};
113
114
return (
115
- <Stack gap={4}>
+ <Stack
116
+ style={{opacity: disabled ? 0.6 : 1}}
117
+ gap={4}>
118
{label && (
119
<Input.Label required={required}>
120
{label}
0 commit comments