Skip to content
Snippets Groups Projects
Commit 90f4715e authored by !! Julian Keck (old Account; do not use) !!'s avatar !! Julian Keck (old Account; do not use) !! :ghost:
Browse files

FIX temporary: prevent exception on free blocks

parent 9b6dafd6
No related branches found
No related tags found
No related merge requests found
......@@ -81,7 +81,7 @@
<template
v-for="(item, item_index) in fs_sliced_records">
<template
v-if="record_type === 'A' && sort_by === 'data' && !filter && item.data in upperIfAsc() && ((item_index-1 < 0 && fs_sliced_records.length !== 1) || fs_sliced_records[item_index-1].data !== item.data)">
v-if="record_type === 'A' && sort_by === 'data' && !filter && item.data in upperIfAsc() && ((item_index-1 < 0 && fs_sliced_records.length !== 1) || fs_sliced_records[item_index-1]?.data !== item.data)">
<BCDFreeAddressBlock :key="'block_upper_' + item.data + '_' + block_index"
v-for="(block,block_index) in reverseIfDesc(upperIfAsc()[item.data].containing_blocks)"
:create_item_func="createRecord" :block="block"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment