summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2017-10-25 19:27:39 +0100
committerGreg Roach <fisharebest@gmail.com>2017-10-25 19:27:39 +0100
commitfcd076d0dfb2f6c884b45c320708dcb372de8aee (patch)
treeba26fa7a96e631308fb68ce342676bcb2faffa35
parent94d15406e54f945ecf1eb65dff15678b7a44c9da (diff)
downloadwebtrees-fcd076d0dfb2f6c884b45c320708dcb372de8aee.tar.gz
webtrees-fcd076d0dfb2f6c884b45c320708dcb372de8aee.tar.bz2
webtrees-fcd076d0dfb2f6c884b45c320708dcb372de8aee.zip
Don't show empty tags in edit interface
-rw-r--r--app/Functions/FunctionsEdit.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Functions/FunctionsEdit.php b/app/Functions/FunctionsEdit.php
index bf4ffff189..ffdb9fbe3f 100644
--- a/app/Functions/FunctionsEdit.php
+++ b/app/Functions/FunctionsEdit.php
@@ -602,7 +602,7 @@ class FunctionsEdit {
case 'MAP':
// These GEDCOM tags should have no data, just child tags.
if ($value === '') {
- $row_class .= ' hidden-xs-up';
+ $row_class .= ' d-none';
}
break;
case 'LATI':