Commit 0107ca51 authored by Robert Knight's avatar Robert Knight Committed by GitHub

Merge pull request #71 from hypothesis/remove-selectiontabs-flag

Remove the 'selection_tabs' feature flag
parents a81eadb3 b9b099b7
......@@ -59,7 +59,7 @@ function RootThread($rootScope, annotationUI, features, searchFilter, viewFilter
}
var threadFilterFn;
if (features.flagEnabled('selection_tabs') && !state.filterQuery && state.selectedTab) {
if (!state.filterQuery && state.selectedTab) {
if (!features.flagEnabled('orphans_tab')) {
threadFilterFn = function (thread) {
if (state.selectedTab === uiConstants.TAB_ANNOTATIONS || state.selectedTab === uiConstants.TAB_ORPHANS) {
......
<selection-tabs ng-if="feature('selection_tabs') &&
!search.query() &&
selectedAnnotationCount() === 0"
<selection-tabs
ng-if="!search.query() && selectedAnnotationCount() === 0"
is-waiting-to-anchor-annotations="waitingToAnchorAnnotations"
is-loading="isLoading"
selected-tab="selectedTab"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment