Commit e09c95e0 by sujata

chnage in heading

1 parent 9692cd87
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
}, },
"options": {}, "options": {},
"attributes": { "attributes": {
"Image": { "DesktopImage": {
"type": "media", "type": "media",
"multiple": false, "multiple": false,
"allowedTypes": [ "allowedTypes": [
...@@ -15,6 +15,13 @@ ...@@ -15,6 +15,13 @@
"audios" "audios"
] ]
}, },
"MobileImage": {
"type": "media",
"multiple": false,
"allowedTypes": [
"images"
]
},
"Link": { "Link": {
"type": "string" "type": "string"
} }
......
...@@ -668,8 +668,11 @@ export interface HomeSliderImg extends Struct.ComponentSchema { ...@@ -668,8 +668,11 @@ export interface HomeSliderImg extends Struct.ComponentSchema {
displayName: 'SliderImg'; displayName: 'SliderImg';
}; };
attributes: { attributes: {
Image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'>; DesktopImage: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
Link: Schema.Attribute.String; Link: Schema.Attribute.String;
MobileImage: Schema.Attribute.Media<'images'>;
}; };
} }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!