Skip to content

Commit

Permalink
Bug fix (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekshmi authored Jun 26, 2020
1 parent 3a34821 commit c446d5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Dashboard/TodoList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@okay="resetCancelPaymentErrors"
attach="#todo-list"
/>
<v-card class="no-results" v-if="isBComp && !allowBCompMaintenanceFiling" flat>
<v-card class="no-results" v-if="!tempRegNumber && isBComp && !allowBCompMaintenanceFiling" flat>
<v-card-text>
<div class="no-results__title">
Coming Soon - Online Maintenance Filings such as Address and Director Changes
Expand Down
4 changes: 2 additions & 2 deletions src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
12:01 AM (Pacific Time). No other filings are allowed until then.</span>
</v-tooltip>
</v-scale-transition>
<v-tooltip top v-if="isBComp && !allowBCompMaintenanceFiling"
<v-tooltip top v-if="!tempRegNumber && isBComp && !allowBCompMaintenanceFiling"
color="primary">
<template v-slot:activator="{ on }">
<span v-on="on" >
Expand Down Expand Up @@ -98,7 +98,7 @@
<section>
<header class="aside-header mb-3">
<h2 data-test-id="dashboard-directors-subtitle">Current Directors</h2>
<v-tooltip top v-if="isBComp && !allowBCompMaintenanceFiling"
<v-tooltip top v-if="!tempRegNumber && isBComp && !allowBCompMaintenanceFiling"
color="primary">
<template v-slot:activator="{ on }">
<span v-on="on" >
Expand Down

0 comments on commit c446d5f

Please sign in to comment.