Bug 32808 - Logic in AgreementsList is flawed
Summary: Logic in AgreementsList is flawed
Status: CLOSED INVALID
Alias: None
Product: Koha
Classification: Unclassified
Component: ERM (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low normal (vote)
Assignee: Jonathan Druart
QA Contact:
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-02-02 21:47 UTC by Jonathan Druart
Modified: 2023-12-28 20:42 UTC (History)
4 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Druart 2023-02-02 21:47:45 UTC
<div v-if="!initialized">{{ $__("Loading") }}</div>
    <div v-else-if="agreements" id="agreements_list">
        <Toolbar v-if="before_route_entered" />
[...]
        <div v-if="agreements.length" class="page-section">
            <table :id="table_id"></table>
        </div>
        <div v-else-if="initialized" class="dialog message">
            {{ $__("There are no agreements defined") }}
        </div>
    </div>
Comment 1 Jonathan Druart 2023-02-22 07:55:06 UTC
It's actually correct. And things are improved on 32807, closing.