Fixed issue in image slider path (Path adding to url instead of redirecting issue) #3987

This commit is contained in:
Jaseel P V 2020-10-07 22:20:15 +05:30
parent c2db69289f
commit 1ce3d26d25
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ export default {
self.images.push({
'path': self.public_path + '/storage/' + slider.path,
'title' : slider.title,
'slider_path': slider.slider_path ? self.public_path+'/'+slider.slider_path : null
'slider_path': slider.slider_path ? slider.slider_path : null
});
self.content.push(slider.content);