@@ -109,7 +109,7 @@ export default class Ellipsis extends Component {
// bisection
const len = text.length;
- const mid = Math.floor(len / 2);
+ const mid = Math.ceil(len / 2);
const count = this.bisection(targetHeight, mid, 0, len, text, shadowNode);