ywana-core8 0.0.905 → 0.0.906

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.905",
3
+ "version": "0.0.906",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -65,7 +65,7 @@ export const FileExplorerView = (props) => {
65
65
  const [view, setView] = useState(selectedView)
66
66
 
67
67
  const folder = folders.find(folder => folder.id === selectedFolder)
68
- const folderTitle = folder ? <Text>folder.title</Text> : ''
68
+ const folderTitle = folder ? <Text>{folder.title}</Text> : ''
69
69
 
70
70
  function switchView() {
71
71
  setView(view === 'grid' ? 'list' : 'grid')
@@ -150,7 +150,6 @@ export const FilesGridView = (props) => {
150
150
  const actions = []
151
151
  if (onDelete) actions.push({ icon: "delete", label: "Delete", action: onDelete })
152
152
 
153
- console.log(actions)
154
153
  return (
155
154
  <div className="files-grid">
156
155
  {files.map(file => <FileGridItem key={file.id} file={file} onSelect={onSelect} selected={isSelected(file.id)} actions={actions}/>)}