Skip to content

Resolve "bugfix/822-TransectInspection-finds-not-always-in-summary"

Closes #822 (closed)

The bug was caused by a misplaced v-if directive.

            <v-tooltip bottom>
                <template v-slot:activator="{ on, attrs }">
                    <v-icon v-if="observation.outOfMethod" x-small color="primary" dark v-bind="attrs" v-on="on">
                        mdi-flag-off
                    </v-icon>
                </template>
                <span>{{ $t("transectInspection.summary.outOfMethod") }}</span>
            </v-tooltip>

In this case the v-if from the v-icon had to be moved to the v-tooltip itself. (For both icons - isDead and outOfMethod)

Edited by Michael Voigt

Merge request reports