Commit a64825b9 authored by William Goszal's avatar William Goszal 🚴

patch item note di menu confirmation yg suka nongol keterangan kalau notenya empty string

parent b7bc4f59
...@@ -273,7 +273,7 @@ class MenuConfirmation extends React.Component { ...@@ -273,7 +273,7 @@ class MenuConfirmation extends React.Component {
<Text style={{ fontSize: 12, fontFamily: 'Gotham-Light', color: '#838383' }}>{item.name} </Text> <Text style={{ fontSize: 12, fontFamily: 'Gotham-Light', color: '#838383' }}>{item.name} </Text>
{ {
item.note == undefined ? ( (item.note == undefined || item.note == "") ? (
null null
) : ( ) : (
<Text style={{ fontSize: 10, fontFamily: 'Gotham-Light', color: '#838383' }}>Keterangan : {item.note} </Text> <Text style={{ fontSize: 10, fontFamily: 'Gotham-Light', color: '#838383' }}>Keterangan : {item.note} </Text>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment