diff options
| author | Greg Roach <fisharebest@gmail.com> | 2017-10-25 19:27:39 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2017-10-25 19:27:39 +0100 |
| commit | fcd076d0dfb2f6c884b45c320708dcb372de8aee (patch) | |
| tree | ba26fa7a96e631308fb68ce342676bcb2faffa35 | |
| parent | 94d15406e54f945ecf1eb65dff15678b7a44c9da (diff) | |
| download | webtrees-fcd076d0dfb2f6c884b45c320708dcb372de8aee.tar.gz webtrees-fcd076d0dfb2f6c884b45c320708dcb372de8aee.tar.bz2 webtrees-fcd076d0dfb2f6c884b45c320708dcb372de8aee.zip | |
Don't show empty tags in edit interface
| -rw-r--r-- | app/Functions/FunctionsEdit.php | 2 |
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': |
