Hello!
Thanks to the great Soren's book I'm getting deeper into customizing my 
wiki. I'm adding a table with some metadata in tiddlers tagged with Author 
but, for reasons unknown to me, such table gets flattened into a single 
line unless I force display: table-row manually.

This is what I've added to the view template:

<$list filter="[all[current]tag[Author]]">
<table>
  <tbody>
    <row style="display: table-row">
      <th align="left">Nationality</th>
      <td>
          <$list filter={{!!nationality}} emptyMessage="Unknown"><<tag>> 
</$list>
      </td>
    </row>

    <row style="display: table-row">
      <th align="left"><span 
class="icon">{{$:/core/images/info-button}}</span> Areas</th>
      <td><$list filter={{!!area}}><<tag>> </$list></td>
    </row>
  </tbody>
</table>
</$list>

So I get this:
[image: Screenshot 2021-05-31 at 13.18.51.png]

But if I dare to remove the forced table-row:
[image: Screenshot 2021-05-31 at 13.20.16.png]

Do you know why this is happening? What can I be doing wrong?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b9f8a87a-599c-4a75-8668-9edf095fd01dn%40googlegroups.com.

Reply via email to