PriorityUICoordinator.endPriorityTask(@_taskId) if @_taskId
@_taskId = null
diff --git a/src/flux/models/tag.coffee b/src/flux/models/tag.coffee
index d1da908f7..e0249535f 100644
--- a/src/flux/models/tag.coffee
+++ b/src/flux/models/tag.coffee
@@ -15,8 +15,12 @@ about Tags on the Nylas Platform, read the
API documentation for more information about what tags are read-only.
`unreadCount`: {AttributeNumber} The number of unread threads with the tag.
+ Note: This attribute is only available when a single tag is fetched directly
+ from the Nylas API, not when all tags are listed.
`threadCount`: {AttributeNumber} The number of threads with the tag.
+ Note: This attribute is only available when a single tag is fetched directly
+ from the Nylas API, not when all tags are listed.
###
class Tag extends Model
@@ -34,4 +38,4 @@ class Tag extends Model
modelKey: 'threadCount'
jsonKey: 'thread_count'
-module.exports = Tag
\ No newline at end of file
+module.exports = Tag
diff --git a/src/flux/models/utils.coffee b/src/flux/models/utils.coffee
index 31a452d83..0e8c1d579 100644
--- a/src/flux/models/utils.coffee
+++ b/src/flux/models/utils.coffee
@@ -134,7 +134,7 @@ Utils =
tableNameForJoin: (primaryKlass, secondaryKlass) ->
"#{primaryKlass.name}-#{secondaryKlass.name}"
-
+
imageNamed: (resourcePath, fullname) ->
[name, ext] = fullname.split('.')
@@ -171,6 +171,7 @@ Utils =
/<[br|p][ ]*>[\n]?[ ]*>/i, # HTML lines beginning with >
/[\n|>]On .* wrote:[\n|<]/, #On ... wrote: on it's own line
/.gmail_quote/ # gmail quote class class
+ /divRplyFwdMsg/ # outlook?
]
for regex in regexs
diff --git a/src/flux/stores/workspace-store.coffee b/src/flux/stores/workspace-store.coffee
index b917caec6..7ed990556 100644
--- a/src/flux/stores/workspace-store.coffee
+++ b/src/flux/stores/workspace-store.coffee
@@ -106,7 +106,7 @@ WorkspaceStore = Reflux.createStore
###
Managing Sheets
###
-
+
# * `id` {String} The ID of the Sheet being defined.
# * `options` {Object} If the sheet should be listed in the left sidebar,
# pass `{root: true, name: 'Label'}`.
@@ -126,6 +126,7 @@ WorkspaceStore = Reflux.createStore
columns: columns
supportedModes: Object.keys(columns)
+ icon: options.icon
name: options.name
root: options.root
diff --git a/src/sheet-container.cjsx b/src/sheet-container.cjsx
index 2b38007c3..b82a5aa07 100644
--- a/src/sheet-container.cjsx
+++ b/src/sheet-container.cjsx
@@ -192,6 +192,7 @@ class SheetContainer extends React.Component
@@ -206,6 +207,7 @@ class SheetContainer extends React.Component
diff --git a/src/sheet.cjsx b/src/sheet.cjsx
index aaa06e773..e7cd863cc 100644
--- a/src/sheet.cjsx
+++ b/src/sheet.cjsx
@@ -63,6 +63,7 @@ class Sheet extends React.Component
@props.onColumnSizeChanged(@) }
minWidth={minWidth}
@@ -76,7 +77,7 @@ class Sheet extends React.Component
name={"#{@props.data.id}:#{idx}"}
className={"column-#{location.id}"}
data-column={idx}
- style={flex: 1}
+ style={flex: 1, height:'100%'}
matching={location: location, mode: @state.mode}/>
_getStateFromStores: =>