mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-02 15:02:38 +00:00
prevent crash on input to second field. small css change
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
module.exports = {
|
||||
title : [
|
||||
(value)=>{
|
||||
return value?.length > 10 ? 'Max URL length of 10 characters' : null;
|
||||
return value?.length > 10 ? 'Max title length of 10 characters' : null;
|
||||
}
|
||||
],
|
||||
description : [
|
||||
(value)=>{
|
||||
return value?.length > 10 ? 'Max URL length of 10 characters' : null;
|
||||
return value?.length > 10 ? 'Max description length of 10 characters' : null;
|
||||
}
|
||||
],
|
||||
thumbnail : [
|
||||
|
||||
Reference in New Issue
Block a user