diff --git a/client/helpers/cache.js b/client/helpers/cache.js
index 9c2ccbab..996744d4 100644
--- a/client/helpers/cache.js
+++ b/client/helpers/cache.js
@@ -6,7 +6,7 @@
function Data(){
this.FILE_PATH = "file_path";
this.FILE_CONTENT = "file_content";
- this.db_version = 'v1.1';
+ this.db_version = 'v1.0';
this.db = null;
this.intervalId = window.setInterval(this._vacuum.bind(this), 5000);
this._init();
diff --git a/client/pages/filespage/thing-existing.js b/client/pages/filespage/thing-existing.js
index 11dfcf68..5d743b37 100644
--- a/client/pages/filespage/thing-existing.js
+++ b/client/pages/filespage/thing-existing.js
@@ -146,6 +146,9 @@ export class ExistingThing extends React.Component {
if((this.props.fileIsOver && this.props.canDropFile) || (this.props.nativeFileIsOver && this.props.canDropNativeFile)) {
className += "file-is-hover ";
}
+ if(this.state.is_renaming){
+ className += "highlight ";
+ }
className = className.trim();
return connectDragSource(connectDropNativeFile(connectDropFile(
@@ -153,8 +156,7 @@ export class ExistingThing extends React.Component {
-
-
+
@@ -195,7 +197,9 @@ class Filename extends React.Component {
return (
- {this.state.filename}
+
+ {this.state.filename}
+