ywana-core8 0.0.590 → 0.0.593

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.590",
3
+ "version": "0.0.593",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -132,9 +132,11 @@ export const TablePage = (props) => {
132
132
  })
133
133
  }
134
134
 
135
+ const total = all ? all.length : 0
136
+ const title2 = `<span className="size">${total}</span> ${title}`
135
137
  return (
136
138
  <Fragment>
137
- <Header className="table-page" title={<Text>[ {all ? all.length || 0 } ] {title}</Text>}>
139
+ <Header className="table-page" title={<Text>{title2}</Text>}>
138
140
  {canAdd ? <Button icon="add" label="Añadir" action={add} raised /> : null}
139
141
  &nbsp;
140
142
  <Button icon="refresh" label="Reload" action={reload} />