Bug 32808

Summary: Logic in AgreementsList is flawed
Product: Koha Reporter: Jonathan Druart <jonathan.druart>
Component: ERMAssignee: Jonathan Druart <jonathan.druart>
Status: CLOSED INVALID QA Contact:
Severity: normal    
Priority: P5 - low CC: jonathan.druart, jonathan.field, martin.renvoize, pedro.amorim
Version: unspecified   
Hardware: All   
OS: All   
See Also: https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=32807
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:

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.